(Sample .emacs File): Added missing `)' in sample code `my-c-initialization-hook'.
authorMasatake YAMATO <jet@gyve.org>
Fri, 20 Oct 2006 06:43:56 +0000 (06:43 +0000)
committerMasatake YAMATO <jet@gyve.org>
Fri, 20 Oct 2006 06:43:56 +0000 (06:43 +0000)
man/ChangeLog
man/cc-mode.texi

index 46d5c2934a1df82b4135bafa41dbd16749708d51..466d16d51e28208ae18ec44e2a0a706e5f120c9f 100644 (file)
@@ -1,3 +1,8 @@
+2006-10-20  Masatake YAMATO  <jet@gyve.org>
+
+       * cc-mode.texi (Sample .emacs File): Added missing `)' in 
+       sample code `my-c-initialization-hook'.
+
 2006-10-19  Stuart D. Herring  <herring@lanl.gov>
 
        * widget.texi: Fix typos.
index 395433bc899fdea7c00635e7f80b478c9a9a5a96..801f098b9ce6cd82b3c601beba8a39ad5336341a 100644 (file)
@@ -6560,7 +6560,7 @@ anchoring position to indent the line in that case.
 (defun my-c-initialization-hook ()
   (define-key c-mode-base-map "\C-m" 'c-context-line-break)
   (define-key c-mode-base-map [?\C-\M-a] 'c-beginning-of-defun)
-  (define-key c-mode-base-map [?\C-\M-e] 'c-end-of-defun)
+  (define-key c-mode-base-map [?\C-\M-e] 'c-end-of-defun))
 (add-hook 'c-initialization-hook 'my-c-initialization-hook)
 
 ;; offset customizations not in my-c-style